home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / tex / tex29 / sttexsrc.zoo / src / hash.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-03-13  |  591 b   |  31 lines

  1.  
  2. /*
  3.  * @(#)hash.h 2.5 EPA
  4.  *
  5.  * Copyright 1987,1988 Pat J Monardo
  6.  *
  7.  * Redistribution of this file is permitted through
  8.  * the specifications in the file COPYING.
  9.  *
  10.  * 
  11.  */
  12.  
  13. #define next(H)             hash[H].hh1.lh
  14. #define text(H)             hash[H].hh1.rh
  15. #define font_id_text(H)     text(FONT_ID_BASE + H)
  16.  
  17. #define hash_is_full        (hash_used == HASH_BASE)
  18.  
  19. global  hh      hash[];
  20. global  ptr     hash_used;
  21. global  bool    no_new_control_sequence;
  22. global  int     cs_count;
  23.  
  24. ptr     id_lookup();
  25. int     print_cs();
  26. int     sprint_cs();
  27.  
  28. #ifdef  INIT
  29. int     primitive();
  30. #endif
  31.